Sunny Rana (born 25 December 1987) is an Indian cricketer. He made his List A debut for Uttarakhand in the 2018–19 Vijay Hazare Trophy on 20 September 2018. He made his first-class debut for Uttarakhand in the 2018–19 Ranji Trophy on 1 November 2018. He made his Twenty20 debut for Uttarakhand in the 2018–19 Syed Mushtaq Ali Trophy on 21 February 2019.
Rana Sunny
03-Jul-2025You can iterate over records in IndexedDB using a cursor, which allows you to go through each record one-by-one—great for large datasets or conditional processing.
Basic Syntax for Cursor Iteration
You Can Use Cursor With:
store.openCursor()index.openCursor()store.openCursor(IDBKeyRange.bound(1, 100))store.openCursor(null, 'prev')Example: Read All Users Where Age > 30
Cursor Methods
cursor.continue()cursor.advance(n)nrecordscursor.update(value)cursor.delete()Update Record During Iteration
Summary